home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 34.zip / BS1 part 34 / Aztec C 5.0a disk 1.adf / include / resources / misc.h < prev    next >
C/C++ Source or Header  |  1989-11-09  |  550b  |  22 lines

  1. #ifndef    RESOURCES_MISC_H
  2. #define    RESOURCES_MISC_H
  3. #ifndef    EXEC_TYPES_H
  4. #include    "exec/types.h"
  5. #endif    /* !EXEC_TYPES_H */
  6. #ifndef    EXEC_LIBRARIES_H
  7. #include    "exec/libraries.h"
  8. #endif    /* !EXEC_LIBRARIES_H */
  9. #define    MR_SERIALPORT    0L
  10. #define    MR_SERIALBITS    1L
  11. #define    MR_PARALLELPORT    2L
  12. #define    MR_PARALLELBITS    3L
  13. #define    NUMMRTYPES    4L
  14. struct    MiscResource    {
  15. struct    Library    mr_Library;
  16. ULONG    mr_AllocArray[NUMMRTYPES];
  17. };
  18. #define    MR_ALLOCMISCRESOURCE    (LIB_BASE)
  19. #define    MR_FREEMISCRESOURCE    (LIB_BASE    +    LIB_VECSIZE)
  20. #define    MISCNAME    "misc.resource"
  21. #endif
  22.